mergeTransitionsInSequence
abstract fun mergeTransitionsInSequence(@Nullable exitTransitionObj: Any, @Nullable enterTransitionObj: Any, @Nullable sharedElementTransitionObj: Any): Any(source)
Combines enter, exit, and shared element transition so that they play in the proper sequence. First the exit transition plays along with the shared element transition. When the exit transition completes, the enter transition starts. The shared element transition can continue running while the enter transition plays.
Return
A TransitionSet with all of enter, exit, and shared element transitions in it (modulo null values), ordered such that they play in the proper sequence.